Reversed Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Returns a View collection that can be used for enumerating the items in the set in reversed order.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public OrderedSet<T>.OrderedSet<(Of <T>)>..::View Reversed()
Visual Basic (Declaration)
Public Function Reversed As OrderedSet<(Of <T>)>..::View
Visual C++
public:
OrderedSet<(Of <T>)>..::View^ Reversed ()

Return Value

An OrderedSet.View of items in reverse order.

Remarks

Typically, this method is used in conjunction with a foreach statement. For example:

 Copy imageCopy Code
             foreach(T item in set.Reversed()) {
                // process item
             }
            

If an item is added to or deleted from the set while the View is being enumerated, then the enumeration will end with an InvalidOperationException.

Calling Reverse does not copy the data in the tree, and the operation takes constant time.

See Also